:root {
--teak-dark: #2B1F17;
--teak-medium: #4A3328;
--teak-warm: #A06E3B;
--teak-gold: #C88A43;
--teak-orange: #FF7043;
--teak-cream: #FAF3E0;
--section-unified-bg: var(--teak-dark); 
--transition-speed: 0.3s ease-in-out;
--color-shadow-dark: rgba(0,0,0,0.7);
--border-radius-base: 18px;
--border-radius-large: 25px;
--border-radius-rounded: 50px;
--teak-gradient: linear-gradient(90deg, var(--teak-gold), var(--teak-orange));
}
html, body {
overflow-x: hidden;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
line-height: 1.6;
color: var(--teak-cream);
background-color: var(--teak-dark); 
overflow-x: hidden; 
}
a {
text-decoration: none;
color: var(--teak-cream);
}
ul {
list-style: none;
}
img {
max-width: 100%;
height: auto;
display: block;
}




/* navbar */
.navbar-top-left-logo {
position: fixed;
top: 28px;
left: 40px;
display: flex;
align-items: center;
z-index: 1000;
}
.navbar-top-left-logo img {
height: 55px;
width: 165px;
border-radius: var(--border-radius-rounded);
object-fit: cover;
}
.teak-navbar {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
width: 59%;
height: 70px;
background: rgba(35, 25, 20, 0.75);
backdrop-filter: blur(10px);
border-radius: var(--border-radius-rounded);
display: flex;
justify-content: center;
align-items: center;
z-index: 998;
border: 1px solid rgba(255,255,255,0.1);
transition: 0.3s ease-in-out;
}
.nav-center {
display: flex;
gap: 35px;
}
.nav-center a {
color: var(--teak-cream);
font-weight: 400;
text-transform: uppercase;
transition: var(--transition-speed);
}
.nav-center a:hover,
.nav-center .active {
color: var(--teak-gold);
}
.navbar-top-right-cta {
position: fixed;
top: 45px;
right: 40px;
z-index: 1000;
}
.quote-btn {
background: linear-gradient(90deg, var(--teak-warm), var(--teak-orange));
padding: 12px 30px;
border-radius: 30px;
color: white;
font-weight: 600;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
transition: var(--transition-speed);
}
.quote-btn:hover {
opacity: 0.9;
}
.menu-toggle {
position: fixed;
top: 28px;
right: 20px;
z-index: 1100;
background: transparent;
color: var(--teak-gold);
border: none;
padding: 8px;
font-size: 2rem;
cursor: pointer;
display: none;
transition: color 0.3s;
}
.menu-toggle:hover {
color: var(--teak-orange);
}
@media (max-width: 992px) {
.menu-toggle {
display: block;
}
.navbar-top-left-logo {
top: 20px;
left: 15px;
}
.navbar-top-left-logo img {
height: 45px;
width: 65px;
}
.navbar-top-right-cta {
display: none;
}
.teak-navbar {
display: block;
width: 100%;
height: auto;
top: 70px;
left: 0;
transform: none;
padding: 20px 0;
border-radius: 0;
background: rgba(35, 25, 20, 0.95);
border: none;
text-align: left;
display: none; 
}
.nav-center {
flex-direction: column;
gap: 20px;
}
.nav-center a {
font-size: 1.1rem;
padding: 10px 0;
margin-left: 10px;
}
.teak-navbar.active {
display: block !important;
animation: slideDown 0.3s ease forwards;
}
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}




/* --- Floating WhatsApp Button --- */
.whatsapp-float {
position: fixed;
width: 60px;
height: 60px;
bottom: 40px;
right: 40px;
background-color: #A06E3B;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 0 5px 15px var(--color-shadow-dark);
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
transition: all var(--transition-speed);
}
.whatsapp-float:hover {
background-color: #4A3328;
transform: scale(1.1) translateY(-5px);
box-shadow: 0 8px 20px var(--color-shadow-dark);
}


#teak-3d-background {
position: fixed; 
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1; 
}








/*  HERO SECTION */
.teak-hero {
height: 108vh;
display: flex;
align-items: center;
padding: 8%;
position: relative;
color: var(--teak-cream);
overflow: hidden;
background: url("images/home page-hero.jpg") center/cover no-repeat;
background-attachment: fixed; 
}
.teak-hero::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
135deg,
rgba(28,21,17,0.95),
rgba(43,31,23,0.90),
rgba(74,51,40,0.85)
);
z-index: 2;
}
.hero-inner {
position: relative;
z-index: 2;
}
.hero-inner h1 {
font-size: 3.7rem;
line-height: 1.2;
font-weight: 600;
position: relative;
z-index: 10;
}
.hero-inner h1 span {
background: linear-gradient(90deg, var(--teak-gold), var(--teak-orange));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
z-index: 55; 
}
.hero-inner p {
width: 60%;
font-size: 1.3rem;
margin: 25px 0;
color: rgba(255,240,220,0.8);
}
.hero-buttons {
display: flex;
gap: 20px;
}
.btn-outline,
.btn-filled {
transition: var(--transition-speed);
}
.btn-outline {
padding: 12px 28px;
border: 2px solid var(--teak-gold);
border-radius: 30px;
color: var(--teak-cream);
font-weight: 600;
}
.btn-outline:hover {
background: rgba(255,255,255,0.1);
}
.btn-filled {
padding: 12px 28px;
border-radius: 30px;
background: linear-gradient(90deg, var(--teak-warm), var(--teak-orange));
color: white;
font-weight: 600;
}
.btn-filled:hover {
opacity: 0.9;
background: linear-gradient(90deg, var(--teak-orange), var(--teak-warm));
}
@media (max-width: 992px) {
.teak-hero {
height: auto;
padding: 120px 6% 80px;  
background-attachment: scroll;
text-align: center;
}
.hero-inner h1 {
font-size: 2.6rem;
line-height: 1.3;
}
.hero-inner p {
width: 100%;
font-size: 1.15rem;
margin: 20px auto;
}
.hero-buttons {
justify-content: center;
flex-wrap: wrap;
}
.btn-outline,
.btn-filled {
width: auto;
padding: 12px 24px;
font-size: 1rem;
}
}
@media (max-width: 768px) {
.hero-inner h1 {
font-size: 2.2rem;
}
.hero-inner p {
font-size: 1.05rem;
}
.hero-buttons {
gap: 15px;
}
}
@media (max-width: 500px) {
.hero-inner h1 {
font-size: 1.8rem;
}
.btn-outline,
.btn-filled {
font-size: 0.9rem;
padding: 10px 20px;
}
}







/* ABOUT SECTION */
.about-section {
display: flex;
align-items: center;
justify-content: space-between;
gap: 60px;
padding: 80px 8%;
background-color: var(--teak-deep);
color: var(--teak-cream);
max-width: 1400px;
margin: auto;
z-index: 50;
}
.about-left {
max-width: 550px;
}
.about-left a{
background: linear-gradient(90deg, var(--teak-gold), var(--teak-orange));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight:600; text-decoration:none;
}
.about-left a:hover{
background: linear-gradient(90deg, var(--teak-orange), var(--teak-warm)); 
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
} 
.about-section .section-title {
text-align: left;
}
.about-left p {
font-size: 1.2rem;
color: rgba(255,240,220,0.8);
margin-bottom: 18px;
text-align: justify;
}
.about-right img {
width: 440px;
height: 400px;
max-width: 550px;
object-fit: cover;
border-radius: var(--border-radius-base);
box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
@media (max-width: 992px) {
.about-section {
flex-direction: column;
text-align: center;
}
.about-section .section-title {
text-align: center;
}
}
.video-wrap {
position: relative;
width: 100%;
max-width: 550px;
height: 350px;
aspect-ratio: 16/9;
border-radius: 30px;
overflow: hidden;
z-index: 50;
}
.video-box {
width: 100%;
height: 100%;
}
.video-box iframe {
width: 610px;
height: 100%;
object-fit: cover;
border: none;
pointer-events: none;
}
.video-click-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
}





/*GLOBAL SECTION STYLING*/
section {
padding: 80px 8%;
position: relative;
color: var(--teak-cream);
background-color: var(--teak-dark);      
}
.section-title {
font-size: 3rem;
font-weight: 600;
margin-bottom: 50px;
color: var(--teak-cream);
text-align: center;
}
.section-title span {
background: linear-gradient(90deg, var(--teak-gold), var(--teak-orange));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}







/* FOOTER SECTION */
.footer {
position: relative;
color: var(--teak-cream);
padding: 70px 8% 30px;
font-size: 0.95rem;
overflow: hidden;
background-attachment: fixed;
}
.footer > * {
position: relative;
z-index: 2;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
max-width: 1200px;
margin: 0 auto 50px;
text-align: left;
}
.footer h3 {
color: transparent;
background: linear-gradient(90deg, var(--teak-warm), var(--teak-orange));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
font-size: 1.4rem;
margin-bottom: 20px;
font-weight: 600;
z-index: 1;
}
.footer-about p {
color: rgba(250, 243, 224, 0.85);
font-size: 17px;
}
.footer-links ul li {
margin-bottom: 10px;
margin-left: 10px; 
text-transform: uppercase;
}
.footer-links a,
.footer-contact p,
.footer-contact .reach-email {
color: var(--teak-cream);
transition: var(--transition-speed);
}
.footer-links a:hover {
color: var(--teak-orange);
}
.footer-contact i {
margin-right: 10px;
color: transparent;
background: linear-gradient(90deg, var(--teak-warm), var(--teak-orange));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.footer-buttons {
margin-top: 20px;
display: flex;
gap: 15px;
}
.footer-btn {
padding: 6px 14px;
background: linear-gradient(90deg, var(--teak-warm), var(--teak-orange));
color: white;
border-radius: 30px;
font-size: 0.85rem;
text-decoration: none;
transition: 0.3s ease;
box-shadow: 0 6px 15px rgba(0,0,0,0.4);
margin-left: 10px;
text-decoration: none;
transition: var(--transition-speed);
}
.footer-btn:hover {
background: linear-gradient(90deg, var(--teak-orange), var(--teak-warm));
color: var(--teak-cream);
}
.social-icons a {
color: var(--teak-cream);
font-size: 1.5rem;
margin-right: 30px;
transition: var(--transition-speed);
}
.social-icons a:hover {
color: var(--teak-gold);
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-bottom p {
color: rgba(250, 243, 224, 0.6);
font-size: 0.9rem;
}
@media (max-width: 768px) {
.footer {
padding: 60px 5% 20px;
}
.footer-grid {
gap: 25px;
}
}
@media (max-width: 600px) {
.footer-grid {
grid-template-columns: 1fr;
}
}
#teak-3d-background {
position: fixed; 
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1; 
}




.a-line {
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.08);
}




.footer-logo-img {
max-width: 180px;
height: auto;
display: block;
margin-left: 0;
margin-top: 0;
border-radius: 15px;
}
.footer-logo {
margin-bottom: 10px;
}